home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Nov / di9811gd / Example2 / Unit2.dfm / Unit2.txt
Text File  |  1998-01-02  |  2KB  |  105 lines

  1. object Form1: TForm1
  2.   Left = 208
  3.   Top = 133
  4.   Width = 265
  5.   Height = 245
  6.   Caption = 'Example 2b'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label1: TLabel
  18.     Left = 4
  19.     Top = 2
  20.     Width = 100
  21.     Height = 13
  22.     Caption = 'Instantiated Threads:'
  23.   end
  24.   object Label2: TLabel
  25.     Left = 4
  26.     Top = 176
  27.     Width = 24
  28.     Height = 13
  29.     Caption = 'Text:'
  30.   end
  31.   object btnLoad: TButton
  32.     Left = 132
  33.     Top = 18
  34.     Width = 120
  35.     Height = 25
  36.     Caption = '&Load library'
  37.     TabOrder = 0
  38.     OnClick = btnLoadClick
  39.   end
  40.   object btnUnload: TButton
  41.     Left = 132
  42.     Top = 46
  43.     Width = 120
  44.     Height = 25
  45.     Caption = '&Unload library'
  46.     TabOrder = 1
  47.     OnClick = btnUnloadClick
  48.   end
  49.   object lbThreads: TListBox
  50.     Left = 4
  51.     Top = 18
  52.     Width = 121
  53.     Height = 129
  54.     ItemHeight = 13
  55.     TabOrder = 4
  56.   end
  57.   object btnNewThread: TButton
  58.     Left = 132
  59.     Top = 94
  60.     Width = 120
  61.     Height = 25
  62.     Caption = 'Create &new thread'
  63.     TabOrder = 2
  64.     OnClick = btnNewThreadClick
  65.   end
  66.   object btnCloseThread: TButton
  67.     Left = 132
  68.     Top = 122
  69.     Width = 120
  70.     Height = 25
  71.     Caption = '&Close selected thread'
  72.     TabOrder = 3
  73.     OnClick = btnCloseThreadClick
  74.   end
  75.   object Edit1: TEdit
  76.     Left = 36
  77.     Top = 172
  78.     Width = 133
  79.     Height = 21
  80.     Enabled = False
  81.     TabOrder = 5
  82.     Text = 'hello world testing 3 2 1'
  83.   end
  84.   object btnGetFirstWord: TButton
  85.     Left = 176
  86.     Top = 160
  87.     Width = 75
  88.     Height = 25
  89.     Caption = 'Get &first word'
  90.     Enabled = False
  91.     TabOrder = 6
  92.     OnClick = btnGetFirstWordClick
  93.   end
  94.   object btnGetNextWord: TButton
  95.     Left = 176
  96.     Top = 188
  97.     Width = 75
  98.     Height = 25
  99.     Caption = 'Get &next word'
  100.     Enabled = False
  101.     TabOrder = 7
  102.     OnClick = btnGetNextWordClick
  103.   end
  104. end
  105.